/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Section */
header {
    background-color: #3e8e41;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffbf00;
}

/* Privacy Policy Section */
.privacy-policy {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 40px auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3e8e41;
}

.privacy-policy h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #3e8e41;
}

.privacy-policy p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.privacy-policy ul {
    list-style-type: disc;
    padding-left: 20px;
}

.privacy-policy a {
    color: #3e8e41;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* Footer Section */
footer {
    background-color: #3e8e41;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}
